home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 1.2 KB | 39 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWMenu.k
- // Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWMENU_K
- #define FWMENU_K
-
- //========================================================================================
- // Miscellaneous
- //========================================================================================
-
- #define FW_kNoKeyEquivalent 0
- #define FW_kNoCommand -1
- #define FW_kSeparatorCommand 0
- #define FW_kMenuBarResourceType 'FWmb'
-
- #ifdef FW_BUILD_WIN
- #define FW_kFirstUserCommandID 1501
- #endif
-
- #ifdef FW_BUILD_MAC
- #define FW_kFirstUserCommandID 20001
- #endif
-
- //========================================================================================
- // Constants for Framework Commands
- //========================================================================================
-
- #define FW_kDragCommand 101
- #define FW_kDropCommand 102
- #define FW_kCreateLinkCommand 103
- #define FW_kCreateLinkSourceCommand 104
-
- #endif